package text

Import Path
	github.com/K-Phoen/grabana/text (on go.dev)

Dependency Relation
	imports 4 packages, and imported by one package

Involved Source Files text.go
Package-Level Type Names (total 2)
/* sort by: | */
Option represents an option that can be used to configure a text panel. func Description(content string) Option func Height(height string) Option func HTML(content string) Option func Links(panelLinks ...links.Link) Option func Markdown(content string) Option func Span(span float32) Option func Transparent() Option func New(title string, options ...Option) (*Text, error) func github.com/K-Phoen/grabana/row.WithText(title string, options ...Option) row.Option
Text represents a text panel. Builder *sdk.Panel func New(title string, options ...Option) (*Text, error)
Package-Level Functions (total 8)
Description annotates the current visualization with a human-readable description.
Height sets the height of the panel, in pixels. Example: "400px".
HTML sets the content of the panel, to be rendered as HTML.
Markdown sets the content of the panel, to be rendered as markdown.
New creates a new text panel.
Span sets the width of the panel, in grid units. Should be a positive number between 1 and 12. Example: 6.
Transparent makes the background transparent.